From 4087803aad6840689e9fb54ae2d84bbb33a9ab9c Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Fri, 21 Jul 2006 08:15:53 +0000 Subject: [PATCH] remove accidential 2nd parameter to g_object_unref(). 2006-07-21 Michael Natterer * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): remove accidential 2nd parameter to g_object_unref(). --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ gtk/gtkentrycompletion.c | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6d8d2d2bd3..d0cd11fcb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-07-21 Michael Natterer + + * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): + remove accidential 2nd parameter to g_object_unref(). + 2006-07-21 Matthias Clasen * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 6d8d2d2bd3..d0cd11fcb5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2006-07-21 Michael Natterer + + * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): + remove accidential 2nd parameter to g_object_unref(). + 2006-07-21 Matthias Clasen * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 656c7fdf5a..77196521d0 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -566,7 +566,7 @@ gtk_entry_completion_finalize (GObject *object) gtk_entry_set_completion (GTK_ENTRY (priv->entry), NULL); if (priv->actions) - g_object_unref (priv->actions, priv->actions); + g_object_unref (priv->actions); if (priv->action_view) g_object_unref (priv->action_view); -- 2.30.2